home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / grafik / 3d & render tools / irit / man / man6 / tdivide.6 < prev    next >
Encoding:
Text File  |  1996-07-16  |  835 b   |  27 lines

  1. .TH TDIVIDE
  2.  6 "IRIT Version 6.0" 
  3. .SH NAME
  4. TDIVIDE
  5.  
  6.  
  7.  
  8.  TrivarType TDIVIDE( TrivarType TV, ConstantType Direction,
  9.                                                           NumericType Param )
  10.  
  11. Subdivides a trivariate into two at the specified parameter value Param
  12. in the specified Direction (ROW, COL, or DEPTH). TV can be either
  13. a Bspline trivairate in which Param must be conatined in the parametric
  14. domain of the trivariate, or a Bezier trivariate in which Param must be
  15. in the range of zero to one.
  16.  
  17. It returns a list of the two sub-trivariates. The individual trivariates
  18. may be extracted from the list using the NTH command.
  19.  
  20. Example:
  21.  
  22.     TvDiv = TDIVIDE( Tv2, depth, 0.3 );
  23.     Tv2a = nth( TvDiv, 1 ) * tx( -2.2 );
  24.     Tv2b = nth( TvDiv, 2 ) * tx( 2.0 );
  25.  
  26. subdivides Tv2 at the parameter value of 0.3 in the DEPTH direction,
  27.